home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / btreeprt.cpp < prev    next >
C/C++ Source or Header  |  1999-03-14  |  4KB  |  146 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- // 
  5. // C++ Source Code File Name: btreeprt.cpp
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer 
  8. // File Creation Date: 02/12/1997 
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ------------- Program Description and Details ------------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. BTree printing functions used to debug the code that works with
  32. the (B)alanced multi-way file-base (T)ree class.
  33. */
  34. // ----------------------------------------------------------- //   
  35. #include <iostream.h>
  36. #include <string.h>
  37. #include "btreeprt.h"
  38. #include "cacstats.h"
  39.  
  40. // Global variables used for displaying tree nodes
  41. int LineCount = 0;
  42.  
  43. void PrintNode(CachePointer n)
  44. // Prints a single btree node.
  45. {
  46.   int i = 0;
  47.   FAU addr = (__LWORD__)n;
  48.   cout << "[";
  49.   cout << "Node FAU: " << (__LWORD__)addr; 
  50.   cout << ", ";
  51.   cout << "Left Node: " << (__LWORD__)n->left;
  52.   cout << "]";
  53.   while (i < n->cnt) {
  54.     cout << " <";
  55.     cout << n->entry[i].key;
  56.     cout << ", " << (__LWORD__)n->entry[i].object_address;
  57.     cout << ", " << (__LWORD__)n->entry[i].class_id;
  58.     cout << ", " << (__LWORD__)n->entry[i].right;
  59.     cout << "> ";
  60.     i++;
  61.   }
  62.   cout << endl;
  63. }
  64.  
  65. void PrintTree(CachePointer t, Btree *tree)
  66. // Prints the entire tree node by node.
  67. {
  68.   int i;
  69.  
  70.   // Ensure that the in memory buffers and the file data
  71.   // stay in sync during multiple file access.
  72.   tree->TestTree();
  73.  
  74.   if ((__LWORD__)t) {
  75.     PrintNode(t);
  76.     int n = t->cnt;
  77.     if(LineCount > DisplayLines) {
  78.       LineCount = 0;
  79.       cout << endl;
  80.       cout << "Press enter to continue >";
  81.       cin.get();
  82.       cout << endl;
  83.     }
  84.  
  85.     CachePointer p(t);
  86.     LineCount++;
  87.     for(i = -1; i < n; i++) {
  88.       p = t->Branch(i);
  89.         t.Release();
  90.         PrintTree(p, tree);  
  91.     }
  92.   }
  93. }
  94.  
  95. void ListInOrder(CachePointer t, Btree *tree)
  96. // List the btree data node by node. 
  97. {
  98.   int i = 0;
  99.  
  100.   // Ensure that the in memory buffers and the file data
  101.   // stay in sync during multiple file access.
  102.   tree->TestTree();
  103.  
  104.   if ((__LWORD__)t) {
  105.     while (i < t->cnt) {
  106.       cout << t->entry[i].key << endl;
  107.       i++;
  108.       LineCount++;
  109.     }
  110.     if(LineCount > DisplayLines) {
  111.       LineCount = 0;
  112.       cout << endl;
  113.       cout << "Press enter to continue >";
  114.       cin.get();
  115.       cout << endl;
  116.     }
  117.  
  118.     int n = t->cnt;
  119.     CachePointer p(t);
  120.     for(i = -1; i < n; i++) { 
  121.       if((__LWORD__)p) 
  122.     p = t->Branch(i);
  123.       t.Release(); // Prevent cache from filling up during recursion
  124.       ListInOrder(p, tree);  
  125.     }
  126.   }
  127. }
  128.  
  129. void BTreeStats(Btree &t)
  130. {
  131.   // Ensure that the in memory buffers and the file data
  132.   // stay in sync during multiple file access.
  133.   t.TestTree();
  134.  
  135.   cout << endl << "---- Btree Statistics ----" << endl;
  136.   cout << "Tree stats: " << t.GetNumEntries() << " entries, ";
  137.   cout << t.GetNumNodes() << " nodes, " << t    
  138.        << " levels" << endl;
  139.   cout << "Root FAU = " << (__LWORD__)t.GetRoot() << endl;
  140.   Report(*(t.GetCache()), 0);
  141. }
  142. // ----------------------------------------------------------- // 
  143. // ------------------------------- //
  144. // --------- End of File --------- //
  145. // ------------------------------- //
  146.